File: /var/www/html/wpbiancoarte/wp-content/plugins/hiroshi-core/inc/wishlist/include.php
<?php
include_once HIROSHI_CORE_INC_PATH . '/wishlist/helper.php';
if ( ! function_exists( 'hiroshi_core_wishlist_include_widgets' ) ) {
/**
* Function that includes widgets
*/
function hiroshi_core_wishlist_include_widgets() {
foreach ( glob( HIROSHI_CORE_INC_PATH . '/wishlist/widgets/*/include.php' ) as $widget ) {
include_once $widget;
}
}
add_action( 'qode_framework_action_before_widgets_register', 'hiroshi_core_wishlist_include_widgets' );
}
include_once HIROSHI_CORE_INC_PATH . '/wishlist/profile/wishlist-profile-helper.php';